home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib7 / v_09_12 / 9n12033b < prev    next >
Encoding:
Text File  |  1995-11-01  |  290 b   |  9 lines

  1. typedef struct node {
  2.     struct node *pfwd;    /* ptr to next node in list */
  3.     struct node *pbwd;    /* ptr to prev node in list */
  4.     struct node *pdupe;    /* ptr to next duplicate node */
  5.     void (*process)(unsigned);    /* function to call */
  6.     unsigned priority;    /* function priority */
  7. } Node;
  8.  
  9.